home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 January / PSL Monthly Shareware CD-ROM (Public Software Library) (January 1994).iso / games / dos / puzzles / merlin.com / MERLIN.DOC < prev   
Encoding:
Text File  |  1990-01-16  |  2.3 KB  |  59 lines

  1. Merlin is a simple memory resident (pop-up) game.  The hot-key is
  2. CTRL-M.  It works on both color and monochrome systems.
  3.  
  4. Merlin is played on a three by three board and the object of the game
  5. is simple; all you need to do is clear the board.  The numeric keypad
  6. is used to toggle the squares.  Here is the layout:
  7.  
  8.                          +---+---+---+
  9.                          | 7 | 8 | 9 |
  10.                          +---+---+---+
  11.                          | 4 | 5 | 6 |
  12.                          +---+---+---+
  13.                          | 1 | 2 | 3 |
  14.                          +---+---+---+
  15.  
  16. Pressing a key will toggle certain squares on or off.  The idea is to
  17. clear the whole board.  Pressing the 1 key will toggle these squares:
  18.  
  19.                          +---+---+---+
  20.                          |   |   |   |
  21.                          +---+---+---+
  22.                          | X | X |   |
  23.                          +---+---+---+
  24.                          | X | X |   |
  25.                          +---+---+---+
  26.  
  27. Likewise, any corner key toggles the four squares in the corner.  Edge
  28. keys (2,4,6,8) toggle the squares on the edge.  Here is an example for 2.
  29.  
  30.                          +---+---+---+
  31.                          |   |   |   |
  32.                          +---+---+---+
  33.                          |   |   |   |
  34.                          +---+---+---+
  35.                          | X | X | X |
  36.                          +---+---+---+
  37.  
  38. The 5 key toggles the central squares:
  39.  
  40.                          +---+---+---+
  41.                          |   | X |   |
  42.                          +---+---+---+
  43.                          | X | X | X |
  44.                          +---+---+---+
  45.                          |   | X |   |
  46.                          +---+---+---+
  47.  
  48. That's all there is to it.  You can scramble the board at any time by
  49. pressing ENTER.  Press ESCAPE to exit Merlin.  Don't forget to set
  50. NUMLOCK if you don't have a dedicated keypad.
  51.  
  52. I first saw Merlin several years ago on another computer.  I had a
  53. lazy weekend to kill and I wanted to see just how small a memory
  54. resident version of Merlin I could write.  The .COM file is only 383
  55. bytes although the program occupies about 1200 bytes of RAM due to the
  56. screen save buffer.
  57.  
  58. -David Stafford  (CIS 72411,2670)
  59.